home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / jam / jamdisk7 / inc9110b.lzh / include / alloca.h next >
C/C++ Source or Header  |  1991-05-22  |  324b  |  23 lines

  1. /*
  2.  * alloca.h - Declarations for alloca()
  3.  * Simon Wright (sjwright@cix) 22.5.91, for PDC/GCC/Amiga
  4.  */
  5.  
  6. #ifndef __ALLOCA_H__
  7. #define __ALLOCA_H__
  8.  
  9. #ifndef __STDDEF_H__
  10. #include <stddef.h>
  11. #endif
  12.  
  13. #ifdef __GNUC__
  14. #define alloca __builtin_alloca
  15. #else
  16. void         *alloca(size_t size);
  17. #endif
  18.  
  19. #endif /* __ALLOCA_H__ */
  20.  
  21.  
  22.  
  23.